2008-03-02 Johan Dahlin <johan@gnome.org>
* configure.in: Compare using = instead of ==, which is portable.
(#490787, Thomas Klausner)
svn path=/trunk/; revision=19689
2008-03-02 Johan Dahlin <johan@gnome.org>
+ * configure.in: Compare using = instead of ==, which is portable.
+ (#490787, Thomas Klausner)
+
+d2008-03-02 Johan Dahlin <johan@gnome.org>
+
* tests/Makefile.am (noinst_PROGRAMS): Remove autotestkeywords, it's added later,
fixes non-C++ build.
(#496032, Nelson Benitez)
gtk_save_cxxflags="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS -x objective-c++"
AC_TRY_COMPILE([@interface Foo @end],,OBJC=yes,OBJC=no)
-AM_CONDITIONAL(HAVE_OBJC, test "$OBJC" == "yes")
+AM_CONDITIONAL(HAVE_OBJC, test "$OBJC" = "yes")
CXXFLAGS="$gtk_save_cxxflags"
AC_LANG_RESTORE